home *** CD-ROM | disk | FTP | other *** search
/ Champak 132 (Alt) / Vol 132.iso / games / sweettim.swf / scripts / frame_8 / PlaceObject2_212_191 / CLIPACTIONRECORD onClipEvent(enterFrame).as next >
Encoding:
Text File  |  2011-06-09  |  340 b   |  14 lines

  1. onClipEvent(enterFrame){
  2.    timer--;
  3.    if(timer == 0)
  4.    {
  5.       rndArea = 1 + Math.floor(Math.random() * 9);
  6.       if(sweetRack[rndArea - 1][1] != 100)
  7.       {
  8.          sweetRack[rndArea - 1][1] += 20;
  9.          eval("_root.area_" + rndArea).level.gotoAndStop(sweetRack[rndArea - 1][1]);
  10.       }
  11.       timer = fps * 2;
  12.    }
  13. }
  14.